class: center, middle, inverse, title-slide .title[ # The way to the Moon ] .subtitle[ ## âš”
in 2077 Edgerrunners ] .author[ ### Eyre Hong ] .date[ ### 2022/09/23 ] --- ### Meet the one you want to go to the moon together <img src="data:image/png;base64,#imgs/lucy&david.png" width="60%" style="display: block; margin: auto;" /> Lucy & David in Night City ```r ppl = 1 if (ppl == 0) { print("None") } else { print("You found someone!") } ``` ``` ## [1] "You found someone!" ``` --- # Add some fancy implants in you own body How many implants you got? ```r implants <- sample(1:10, 1) print(paste0("You have ", implants, " implants!")) ``` ``` ## [1] "You have 2 implants!" ``` --- ### Fight and Get that people you want to the moon But becarful! You have a chance to become a cyberpshcho and die!!! ```r limitation = 5 if (implants < limitation) { print("You will stay sanity!") } else { print("You will become a cyberpsycho and die!!!") } ``` ``` ## [1] "You will stay sanity!" ``` <img src="data:image/png;base64,#imgs/david_skeleton.jpg" width="60%" style="display: block; margin: auto;" />